home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / stk-3.0 / stk-3 / blt-for-STk-3.0 / blt-1.9 / library / Makefile.in < prev   
Encoding:
Makefile  |  1995-07-01  |  964 b   |  42 lines

  1. # ------------------------------------------------------------------------
  2. #     Makefile for library files and directories of BLT library
  3. # ------------------------------------------------------------------------
  4.  
  5. INSTALL      = @INSTALL@
  6. INSTALL_DATA = @INSTALL_DATA@
  7. BLT_LIBRARY  = @BLT_LIBRARY@
  8. RM           = rm -f
  9. SHELL        = /bin/sh
  10. FILES        = bltGraph.pro
  11. srcdir         = @srcdir@
  12.  
  13. all:
  14.  
  15. install-top:
  16.     @if test -d $(BLT_LIBRARY) ; then \
  17.         : ; \
  18.     else \
  19.         mkdir $(BLT_LIBRARY) ; \
  20.     fi
  21.  
  22. install-dragdrop: install-top
  23.     @if test -d $(BLT_LIBRARY)/dd_protocols ; then \
  24.         : ; \
  25.         else \
  26.         mkdir $(BLT_LIBRARY)/dd_protocols ; \
  27.     fi
  28.     @set -x; for i in $(srcdir)/dd_protocols/*tcl* ; do \
  29.         $(INSTALL_DATA) $$i $(BLT_LIBRARY)/dd_protocols ; \
  30.     done 
  31.  
  32. install-files: install-top
  33.     @set -x; for i in $(srcdir)/$(FILES) ; do \
  34.         $(INSTALL_DATA) $$i $(BLT_LIBRARY) ; \
  35.     done 
  36.  
  37. install: install-dragdrop install-files
  38.  
  39. clean:
  40.     $(RM) *\~ "#"*
  41.  
  42.